home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Light ROM 1
/
LIGHT-ROM 1 (Amiga Library Services)(1994).iso
/
ffdisks
/
d939.lha
/
CloseWB
/
CloseWB.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-12-20
|
331b
|
16 lines
#include <stdlib.h>
#include <clib/alib_protos.h>
#include <clib/intuition_protos.h>
UBYTE *vers="$VER: CloseWB 1.0 Bachmann Daniels";
void main(int argc, char *argv[])
{
if(argc<2)
TimeDelay(1,10,0);
else
TimeDelay(1,atoi(argv[1]),0);
CloseWorkBench();
exit(0);
}